home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mntinc20 / termcap.h < prev    next >
C/C++ Source or Header  |  1992-05-15  |  665b  |  35 lines

  1. #ifndef _TERMCAP_H
  2. #define _TERMCAP_H
  3.  
  4. #ifndef _COMPILER_H
  5. #  include <compiler.h>
  6. #endif
  7.  
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11.  
  12. /* tgetent.c */
  13. __EXTERN int tgetent __PROTO((char *bp, char *name));
  14.  
  15. /* tgetflag.c */
  16. __EXTERN int tgetflag __PROTO((char *id));
  17.  
  18. /* tgetnum.c */
  19. __EXTERN int tgetnum __PROTO((char *id));
  20.  
  21. /* tgetstr.c */
  22. __EXTERN char *tgetstr __PROTO((char *id, char **area));
  23.  
  24. /* tgoto.c */
  25. __EXTERN char *tgoto __PROTO((char *cm, int destcol, int destline));
  26.  
  27. /* tputs.c */
  28. __EXTERN void tputs __PROTO((char *cp, int affcnt, int (*outc)(int )));
  29.  
  30. #ifdef __cplusplus
  31. extern "C" {
  32. #endif
  33.  
  34. #endif /* _TERMCAP_H */
  35.